release: v0.4.0 - #10
Open
grzracz wants to merge 2 commits into
Open
Conversation
Adds a Settings tab that renders the bundled CHANGELOG.md section for the installed version (react-markdown), next to the version in About. Content is imported raw at build time so it works offline and always matches the build; sectionForVersion falls back to the newest release for dev/web builds. A 'View full changelog' link opens the GitHub releases page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Kicks off the 0.4.0 cycle (version bumps + CHANGELOG roll via
release:start).First change: in-app "What's new" tab
Adds a Settings tab that shows the release notes for the installed version, next to the version in About.
CHANGELOG.mdis imported raw at build time, so the notes work offline and always match the installed build (single source of truth).src/lib/changelog.ts: pure parser (parseChangelog,sectionForVersion). Exact-version match wins; falls back to the newest released section for dev/web builds that reportdev; returns null only when there are no released sections. Unit-tested (7 tests).WhatsNewSection.tsx: renders the matched section withreact-markdown+remark-gfm, styled to match Settings. In-note links and the "View full changelog" button route throughopenExternalso the WebView never navigates away.Settings/index.tsx: new "What's new" tab placed right after General.Verification
vitestparser tests pass (7/7),tscand eslint clean,vite buildbundles the raw import successfully.Further 0.4.0 changes will land on this branch; tag
v0.4.0when ready to release.